home *** CD-ROM | disk | FTP | other *** search
- ;
- ; GIFV.SLZ
- ;
- ; This script file is a skeleton file that does nothing in itself
- ; but can be used as a template to create your own script files.
- ;
- ; This file takes all the files in a specific directory and then
- ; loops until all files have been processed. Just insert the commands
- ; you wish in the middle, and poof you'll have your very own script
- ; file that does what you want!
- ;
-
-
-
- ; change this "CHANGE-PATH" command to point to the right directory
- change-path g:\*.? ;Get all graphics files from the root
- ;of drive G:
- slide-type-EXPAND ;select a cool method of display
- delay 2 ;only 2 seconds of pausing
- :loopit ;loop label
- loadnext :exitnow ;show file, if no more go to :exitnow
- ;
- ; put your commands here
- ;
-
- goto :loopit ;loop back to get more files
- :exitnow ;we are done
-